home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
376-400
/
399
/
cclib
/
include
/
stdarg.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-14
|
243b
|
12 lines
#ifndef STDARGS_H
#define STDARGS_H 1
typedef unsigned char *va_list;
#define va_start(ap, lastarg) ((ap) = (va_list)(&lastarg + 1))
#define va_arg(ap, type) ((ap) += sizeof(type), ((type *)(ap))[-1])
#define va_end(ap) ((ap) = 0L)
#endif